home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / tabvie.zip / EDITVW.H < prev    next >
C/C++ Source or Header  |  1994-03-30  |  887b  |  40 lines

  1. // editvw.h : interface of the CEditVw class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #ifndef TABVIEW_H
  5. #include "tabview.h"
  6. #endif
  7. class CEditVw : public CEditView
  8. {
  9. protected: // create from serialization only
  10.     CEditVw();
  11.     DECLARE_DYNCREATE(CEditVw)
  12.  
  13. // Attributes
  14. public:
  15.     CTabDoc* GetDocument();
  16.     CTabView* m_pTabView;
  17.  
  18. // Operations
  19. public:
  20.  
  21. // Implementation
  22. public:
  23.     virtual ~CEditVw();
  24.  
  25. // Generated message map functions
  26. protected:
  27.     //{{AFX_MSG(CEditVw)
  28.     afx_msg void OnSysCommand(UINT nChar,LONG lParam);
  29.     //}}AFX_MSG
  30.     DECLARE_MESSAGE_MAP()
  31.     BOOL PreCreateWindow(CREATESTRUCT& cs);
  32. };
  33.  
  34. #ifndef _DEBUG  // debug version in demoview.cpp
  35. inline CTabDoc* CEditVw::GetDocument()
  36.    { return (CTabDoc*) m_pDocument; }
  37. #endif
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.